GET data/{name}/{recordId}
Gets a record using the default section layout.
Request Information
URI
https://mtm-api.xaitcpq.net/data/{name}/{recordId}?fields[0]={fields[0]}&fields[1]={fields[1]}&share={share}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
Page name. |
string |
Required |
| recordId |
Record Identifier. |
string |
Required |
| fields |
Fields to include |
Collection of string |
Required |
| share |
Optional share parameter |
globally unique identifier |
None. |
Body Parameters
None.
Response Information
Resource Description
Section Data.
SectionData| Name | Description | Type | Additional information |
|---|---|---|---|
| Section | string |
None. |
|
| Locked | boolean |
None. |
|
| LastModified | LastModified |
None. |
|
| CurrencyField | globally unique identifier |
None. |
|
| ChangeLogMessage | string |
None. |
|
| Data | Collection of DataValue |
None. |
Response Formats
application/json, text/json
Sample:
{
"Section": "sample string 1",
"Locked": true,
"LastModified": {
"DateTime": "2026-08-10T06:00:29.2681356Z",
"UserName": "sample string 1",
"UserId": "4ede04c1-af0d-4905-9aa7-ff2590e36f5b"
},
"CurrencyField": "59a129d4-3871-48a4-b792-b816b2d377d0",
"ChangeLogMessage": "sample string 3",
"Data": [
{
"Field": "365cd30a-094b-40cc-9e05-7e11c060b301",
"SectionField": "0dac6f14-1a21-4768-a5ec-eee6b31f5dbe",
"TableName": "sample string 3",
"FieldName": "sample string 4",
"Locked": true,
"Component": "sample string 6",
"Value": {},
"HumanReadableValue": {}
},
{
"Field": "365cd30a-094b-40cc-9e05-7e11c060b301",
"SectionField": "0dac6f14-1a21-4768-a5ec-eee6b31f5dbe",
"TableName": "sample string 3",
"FieldName": "sample string 4",
"Locked": true,
"Component": "sample string 6",
"Value": {},
"HumanReadableValue": {}
}
]
}
text/html
Sample:
{"Section":"sample string 1","Locked":true,"LastModified":{"DateTime":"2026-08-10T06:00:29.2681356Z","UserName":"sample string 1","UserId":"4ede04c1-af0d-4905-9aa7-ff2590e36f5b"},"CurrencyField":"59a129d4-3871-48a4-b792-b816b2d377d0","ChangeLogMessage":"sample string 3","Data":[{"Field":"365cd30a-094b-40cc-9e05-7e11c060b301","SectionField":"0dac6f14-1a21-4768-a5ec-eee6b31f5dbe","TableName":"sample string 3","FieldName":"sample string 4","Locked":true,"Component":"sample string 6","Value":{},"HumanReadableValue":{}},{"Field":"365cd30a-094b-40cc-9e05-7e11c060b301","SectionField":"0dac6f14-1a21-4768-a5ec-eee6b31f5dbe","TableName":"sample string 3","FieldName":"sample string 4","Locked":true,"Component":"sample string 6","Value":{},"HumanReadableValue":{}}]}
application/xml, text/xml
Sample:
<SectionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
<ChangeLogMessage>sample string 3</ChangeLogMessage>
<CurrencyField>59a129d4-3871-48a4-b792-b816b2d377d0</CurrencyField>
<Data>
<DataValue>
<Component>sample string 6</Component>
<Field>365cd30a-094b-40cc-9e05-7e11c060b301</Field>
<FieldName>sample string 4</FieldName>
<HumanReadableValue />
<Locked>true</Locked>
<SectionField>0dac6f14-1a21-4768-a5ec-eee6b31f5dbe</SectionField>
<TableName>sample string 3</TableName>
<Value />
</DataValue>
<DataValue>
<Component>sample string 6</Component>
<Field>365cd30a-094b-40cc-9e05-7e11c060b301</Field>
<FieldName>sample string 4</FieldName>
<HumanReadableValue />
<Locked>true</Locked>
<SectionField>0dac6f14-1a21-4768-a5ec-eee6b31f5dbe</SectionField>
<TableName>sample string 3</TableName>
<Value />
</DataValue>
</Data>
<LastModified>
<DateTime>2026-08-10T06:00:29.2681356+00:00</DateTime>
<UserId>4ede04c1-af0d-4905-9aa7-ff2590e36f5b</UserId>
<UserName>sample string 1</UserName>
</LastModified>
<Locked>true</Locked>
<Section>sample string 1</Section>
</SectionData>